home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / MKDIR / MKDIR.C < prev    next >
C/C++ Source or Header  |  1993-06-23  |  5KB  |  186 lines

  1. /*
  2.  * Copyright (c) 1983 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. #ifndef lint
  35. char copyright[] =
  36. "@(#) Copyright (c) 1983 Regents of the University of California.\n\
  37.  All rights reserved.\n";
  38. #endif /* not lint */
  39.  
  40. #ifndef lint
  41. static char sccsid[] = "@(#)mkdir.c    5.7 (Berkeley) 5/31/90";
  42. #endif /* not lint */
  43.  
  44. #ifdef DF_POSIX
  45. #include <misc.h>
  46. #include <bsdlib.h>
  47. #endif
  48. #if WIN_NT
  49. #include <sys/cdefs.h>
  50. #endif
  51. #include <sys/types.h>
  52. #include <sys/stat.h>
  53. #include <errno.h>
  54. #include <stdio.h>
  55. #include <stdlib.h>
  56. #include <string.h>
  57. #if _POSIX_SOURCE
  58. #include <unistd.h>
  59. #endif
  60.  
  61. #if !_POSIX_SOURCE
  62. extern int errno;
  63. #endif
  64.  
  65. #if WIN_NT
  66. int build __P((char *));
  67. void usage __P((void));
  68. extern int globulate __P((int, int, char **));
  69. extern void deglobulate __P((void));
  70. extern int globulated_argc;
  71. extern char **globulated_argv;
  72. pid_t ppid;
  73. int globulation;
  74. #endif
  75.  
  76. int
  77. #if __STDC__
  78. main (int argc, char **argv)
  79. #else
  80. main(argc, argv)
  81.     int argc;
  82.     char **argv;
  83. #endif
  84. {
  85.     extern int optind;
  86.     int ch, exitval, pflag;
  87.  
  88. #if WIN_NT
  89.     ppid = getppid();
  90.     if (ppid == (pid_t) 1) /* if parent is CMD.EXE */
  91.     {
  92.         globulation = globulate(1, argc, argv);
  93.         if (globulation == 0)
  94.         {
  95.             argc = globulated_argc;
  96.             argv = globulated_argv;
  97.         }
  98.     }
  99. #endif
  100.     pflag = 0;
  101.     while ((ch = getopt(argc, argv, "p")) != EOF)
  102.         switch(ch) {
  103.         case 'p':
  104.             pflag = 1;
  105.             break;
  106.         case '?':
  107.         default:
  108.             usage();
  109.         }
  110.  
  111.     if (!*(argv += optind))
  112.         usage();
  113.  
  114.     for (exitval = EXIT_SUCCESS; *argv; ++argv)
  115.         if (pflag)
  116.             exitval |= build(*argv);
  117. #if _POSIX_SOURCE
  118.         else if (mkdir(*argv, S_IRWXU|S_IRWXG|S_IRWXO) < 0) {
  119. #else
  120.         else if (mkdir(*argv, 0777) < 0) {
  121. #endif
  122.             (void)fprintf(stderr, "mkdir: %s: %s\n",
  123.                 *argv, strerror(errno));
  124.             exitval = EXIT_FAILURE;
  125.         }
  126. #if WIN_NT
  127.     if (ppid == (pid_t) 1 && globulation == 0)
  128.         deglobulate();
  129. #endif
  130.     return exitval;
  131. }
  132.  
  133. int
  134. #if __STDC__
  135. build (char *path)
  136. #else
  137. build(path)
  138.     char *path;
  139. #endif
  140. {
  141.     register char *p;
  142.     struct stat sb;
  143.     int create, ch;
  144.  
  145.     for (create = 0, p = path;; ++p)
  146.         if (!*p || *p  == '/') {
  147.             ch = *p;
  148.             *p = '\0';
  149.             if (stat(path, &sb)) {
  150. #if _POSIX_SOURCE
  151.                 if (errno != ENOENT || mkdir(path, S_IRWXU|S_IRWXG|S_IRWXO) == -1) {
  152. #else
  153.                 if (errno != ENOENT || mkdir(path, 0777) < 0) {
  154. #endif
  155.                     (void)fprintf(stderr, "mkdir: %s: %s\n",
  156.                         path, strerror(errno));
  157.                     return(EXIT_FAILURE);
  158.                 }
  159.                 create = 1;
  160.             }
  161.             if (!(*p = (char)ch))
  162.                 break;
  163.         }
  164.     if (!create) {
  165.         (void)fprintf(stderr, "mkdir: %s: %s\n", path,
  166.             strerror(EEXIST));
  167.         return(EXIT_FAILURE);
  168.     }
  169.     return(EXIT_SUCCESS);
  170. }
  171.  
  172. void
  173. #if __STDC__
  174. usage (void)
  175. #else
  176. usage()
  177. #endif
  178. {
  179.     (void)fprintf(stderr, "usage: mkdir [-p] dirname ...\n");
  180. #if WIN_NT
  181.     if (ppid == (pid_t) 1 && globulation == 0)
  182.         deglobulate();
  183. #endif
  184.     exit(EXIT_FAILURE);
  185. }
  186.